home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wil4c10.zip / FROM32._M_ < prev    next >
Text File  |  1997-07-26  |  934b  |  33 lines

  1. # Microsoft makefile for FROM [Win32]
  2. #
  3. # To use: "NMAKE FROM32._M_"
  4. #
  5.  
  6. CFLAGS   = -c -DWIN32 -DSTRICT -G3 -Ow -W3 -Zp -Tp
  7. GUIFLAGS = -SUBSYSTEM:windows
  8. GUILIBS  = -DEFAULTLIB:user32.lib gdi32.lib winmm.lib comdlg32.lib comctl32.lib wil32.lib
  9.  
  10. from.exe: from.obj from.res about.obj async.obj paint.obj readini.obj str.obj
  11.      link $(GUIFLAGS) -OUT:from.exe from.obj about.obj async.obj paint.obj readini.obj str.obj from.res $(GUILIBS)
  12.  
  13. from.obj: from.c wil.h
  14.      cl $(CFLAGS) from.c
  15.  
  16. about.obj: about.c about.h wil.h
  17.      cl $(CFLAGS) about.c
  18.  
  19. async.obj: async.c async.h wil.h
  20.      cl $(CFLAGS) async.c
  21.  
  22. readini.obj: readini.c readini.h wil.h
  23.     cl $(CFLAGS) readini.c
  24.  
  25. str.obj: str.c str.h
  26.      cl $(CFLAGS) str.c
  27.  
  28. paint.obj: paint.c paint.h
  29.      cl $(CFLAGS) paint.c
  30.  
  31. from.res: from.rc msc.ico wil.h
  32.      rc -r -DWIN32 from.rc
  33.